home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 26 / Mac Magazin and MacEasy Magazine CD - Issue 26.iso / Wissenschaft & Technik / TimGA 1.1 ƒ / Graphs / (2) Bigger graphs / 12 - Hypercube 5D < prev    next >
Text File  |  1995-08-02  |  723b  |  118 lines

  1.  
  2. |V|:    32        // Number of nodes
  3. |E|:    80        // Number of edges
  4.  
  5.                 // Edges are represented as pairs of node numbers...
  6.     1    3
  7.     1    5
  8.     1    9
  9.     1    17
  10.     1    32
  11.     
  12.     2    3
  13.     2    6
  14.     2    10
  15.     2    18
  16.     2    32
  17.     
  18.     3    7
  19.     3    11
  20.     3    19
  21.     
  22.     4    5
  23.     4    6
  24.     4    12
  25.     4    20
  26.     4    32
  27.     
  28.     5    7
  29.     5    13
  30.     5    21
  31.     
  32.     6    7
  33.     6    14
  34.     6    22
  35.     
  36.     7    15
  37.     7    23
  38.     
  39.     8    9
  40.     8    10
  41.     8    12
  42.     8    24
  43.     8    32
  44.     
  45.     9    11
  46.     9    13
  47.     9    25
  48.     
  49.     10    11
  50.     10    14
  51.     10    26
  52.     
  53.     11    15
  54.     11    27
  55.     
  56.     12    13
  57.     12    14
  58.     12    28
  59.     
  60.     13    15
  61.     13    29
  62.     
  63.     14    15
  64.     14    30
  65.     
  66.     15    31
  67.     
  68.     16    17
  69.     16    18
  70.     16    20
  71.     16    24
  72.     16    32
  73.     
  74.     17    19
  75.     17    21
  76.     17    25
  77.     
  78.     18    19
  79.     18    22
  80.     18    26
  81.     
  82.     19    23
  83.     19    27
  84.     
  85.     20    21
  86.     20    22
  87.     20    28
  88.     
  89.     21    23
  90.     21    29
  91.     
  92.     22    23
  93.     22    30
  94.     
  95.     23    31
  96.     
  97.     24    25
  98.     24    26
  99.     24    28
  100.     
  101.     25    27
  102.     25    29
  103.     
  104.     26    27
  105.     26    30
  106.     
  107.     27    31
  108.     
  109.     28    29
  110.     28    30
  111.     
  112.     29    31
  113.     
  114.     30    31
  115.  
  116. ---
  117. This graph is a hypercube 5D.
  118.